home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / devScsiTapeConfig.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  37 lines

  1. /* 
  2.  * devScsiTapeConfig.c --
  3.  *
  4.  *    Configuration file for SCSI tape drives. This file initializes the
  5.  *    data structure containing the list of available SCSI Tape drive 
  6.  *    drivers available in the system.
  7.  *
  8.  * Copyright 1989 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/devScsiTapeConfig.c,v 9.0 89/09/12 14:59:27 douglis Stable $ SPRITE (Berkeley)";
  20. #endif /* not lint */
  21.  
  22. #include "sprite.h"
  23. #include  "scsiTape.h"
  24. #include "exabyteTape.h"
  25. #include "emulexTape.h"
  26. #include "sysgenTape.h"
  27.  
  28. ReturnStatus ((*devSCSITapeAttachProcs[])()) = {
  29.     DevExabyteAttach,
  30.     DevEmulexAttach,
  31.     DevSysgenAttach,
  32.  };
  33.  
  34. int devNumSCSITapeTypes = sizeof(devSCSITapeAttachProcs) / 
  35.                 sizeof(devSCSITapeAttachProcs[0]);
  36.  
  37.